home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Fonts / FontManagerUser.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  358 b   |  24 lines  |  [TEXT/CWIE]

  1. // FontManagerUser.cp
  2.  
  3. #ifndef FontManagerUser_h
  4. #include "FontManagerUser.h"
  5. #endif
  6. #ifndef Integers_h
  7. #include "Integers.h"
  8. #endif
  9. #ifndef QuickDrawUser_h
  10. #include "QuickDrawUser.h"
  11. #endif
  12.  
  13. FontManagerUser::FontManagerUser()
  14.   {
  15.     static bool initialized = false;
  16.     
  17.     if ( !initialized )
  18.       {
  19.         QuickDrawUser();
  20.         InitFonts();
  21.         initialized = true;
  22.       }
  23.   }
  24.